home *** CD-ROM | disk | FTP | other *** search
- function formatText(myText, mySize, myColor)
- {
- textClip_mc.myText_txt.text = String(myText);
- textClip_mc.myText_txt.autoSize = true;
- myFormat = new TextFormat();
- myFormat.size = mySize;
- myFormat.color = myColor;
- textClip_mc.myText_txt.setTextFormat(myFormat);
- }
- textClip_mc.onRollOver = function()
- {
- getUrl("ROLLOVER", "");
- };
- textClip_mc.onRollOut = function()
- {
- getUrl("ROLLOUT", "");
- };
- getUrl("INITIALIZE", "");
- stop();
-